home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Pascal Super Library
/
Pascal Super Library (CW International)(1997).bin
/
LIBRARY
/
TSPA3455
/
TSUNTL.INT
< prev
next >
Wrap
Text File
|
1994-08-16
|
3KB
|
80 lines
{$B-,D-,F-,I+,N-,R-,S+,V+}
(*
Timo Salmi UNiT L
A Turbo Pascal unit of miscellaneous additional routines
All rights reserved 24-Feb-93
This unit may be used and distributed freely for PRIVATE, NON-COMMERCIAL,
NON-INSTITUTIONAL purposes, provided it is not changed in any way, and
that a proper attribution is made. For ANY other usage, such as use in a
business enterprise or at a university, contact the author for the terms
of registration.
The units are under development. Comments and contacts are solicited. If
you have any questions, please do not hesitate to use electronic mail for
communication.
InterNet address: ts@uwasa.fi
The author shall not be liable to the user for any direct, indirect or
consequential loss arising from the use of, or inability to use, any unit,
program or file howsoever caused. No warranty is given that the units and
programs will work under all circumstances.
Timo Salmi
Professor of Accounting and Business Finance
Faculty of Accounting & Industrial Management; University of Vaasa
P.O. BOX 297, FIN-65101 Vaasa, Finland
*)
unit TSUNTL;
(* ======================================================================= *)
interface
(* ======================================================================= *)
(* =======================================================================
Screen and video related
======================================================================= *)
uses Dos;
(* Scroll up a window *)
procedure SCROLLUP (NumberOfLinesToScroll : byte;
BlankLineAttribute : byte;
UpperLeftRow : byte;
UpperLeftColumn : byte;
LowerRightRow : byte;
LowerRightColumn : byte);
(* Scroll down a window *)
procedure SCROLLDN (NumberOfLinesToScroll : byte;
BlankLineAttribute : byte;
UpperLeftRow : byte;
UpperLeftColumn : byte;
LowerRightRow : byte;
LowerRightColumn : byte);
(* Test if the system has EGA or beyond. Does not require the graph unit *)
function ISEGAFN : boolean;
(* =======================================================================
Disk services
======================================================================= *)
{$IFNDEF VER40} (* Not Turbo Pascal 4.0 *)
type string11 = string[11];
(* Set a disk's volume label *)
procedure SETLABEL (drive : char;
DiskLabel : string11;
var ok : boolean);
(* Delete a disk's volume label *)
procedure NOLABEL (drive : char;
var ok : boolean);
{$ENDIF} (* Not Turbo Pascal 4.0 *)